Return to doc.sitecore.com

Release Notes (Sitecore CMS 5.1)

This section contains information about the latest release of the module such as release history, changes made to the current version and the list of known issues.

1.  Release History

November 8, 2007

Mailing List module v5.1.4 is released.

Changes:

January 2, 2007

Mailing List module v5.1.3 is released.

Changes:

December 15, 2006

Mailing List module v5.1.2 is released.

Changes:

July 25, 2006 

Mailing List module  v5.1.1 is released.

Changes:

May 25, 2006 

Mailing List module  v5.1.0 is released.

Changes:

New Features:

February 24, 2006

MailingList v5.0.1.6 is released

Bug Fixes

The following bugs have been fixed: 

January 27, 2006

MailingList v5.0.1.5 is released

Changes:

October 25, 2005

MailingList v5.0.1 is released

2.  Known Issues

Workaround:

1)   In Enterprise Manager, select database Mailinglist, then the Tables section and select table Lists in the table list, Choose Design Table in the context menu. Then select the Deleted field and set its default value to 0. Close the Designer window and save changes.

Please notice that lists that were created after upgrading but before completing the above mentioned steps will not be visible in the Mailing List editor until you set value of the field Deleted to 0 for that lists.

2)  Use the altered script that creates Lists table:

CREATE TABLE [Lists] (
        [ID] [uniqueidentifier] NULL ,
        [Created] [smalldatetime] NULL ,
        [Name] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
        [Description] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
        [Footer] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
        [Disabled] [int] NULL ,
        [Deleted] [int] NULL CONSTRAINT [DF_Lists_Deleted] DEFAULT (0)
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]